home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / PageMaker 6.5 SDK Mac / SourceCode / PageMakerClassLibrary / Queries / PGetPrivateList.h < prev    next >
C/C++ Source or Header  |  1996-07-12  |  1KB  |  46 lines

  1. /*
  2.  *--- PGetPrivateList.h ---------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Thu, Oct 12, 1995 @ 10:06 PM by Paul Ferguson.
  5.  *
  6.  * Description:  This is the base class for query classes that
  7.  * consist of a count field (short) in the first two bytes,
  8.  * followed by that number of fixed or variable length records.
  9.  *-------------------------------------------------------------------------
  10.  */
  11. #ifndef __PGetPrivateList__
  12. #define __PGetPrivateList__
  13.  
  14. #include "PListQuery.h"
  15.  
  16. class PGetPrivateList : public PListQuery
  17. {
  18.  
  19. public:
  20.  
  21.     PGetPrivateList
  22.       (    const char * sDeveloperID,
  23.         const char * sPluginID,
  24.         short cTargetClass,
  25.         unsigned long nTypeFlag,
  26.         unsigned long nTargetID );
  27.  
  28.     const char *    devID;
  29.     const char *    pluginID;
  30.     short            targetClass;
  31.     unsigned long    typeFlag;
  32.     unsigned long    targetID;
  33.     short            cPlatform;
  34.     unsigned long    nSize;
  35.         
  36. private:
  37.  
  38.     PGetPrivateList();
  39.     virtual void Scan();
  40. };
  41.  
  42. #endif
  43.  
  44. // end of PGetPrivateList.h
  45.  
  46.